home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / admin / menu-new.tar / menu-new / menu / utils.h < prev   
C/C++ Source or Header  |  1992-07-04  |  749b  |  39 lines

  1. # include <stdio.h>
  2. #    include <curses.h>
  3. # ifdef TERM_INFO
  4. #    include <term.h>
  5. # endif TERM_INFO 
  6.  
  7. /*    PSC MENU COPYRIGHT NOTICE
  8.  
  9.     Part of PSCMenu
  10.  
  11.     This software is to be considered to be public domain, it
  12. may be copied, modified and parts of it may be used in other programs
  13. as long as this copyright notice remains intact.
  14.  
  15.     Copyright()   PSC - Plymouth State College
  16.     Written by:   Ted Wisniewski 12-9-1990
  17.  
  18. */
  19.  
  20. # define         MAXL        80
  21. # define          THIS_TTY    0
  22. # define        DEL        0x08
  23. # define        BS        0x7f
  24. # define        SPACE        0x20
  25. # define        LF        0x0a
  26. # define         RETURN        0x0d
  27. # define        LAST_LINE    23
  28.  
  29. # define        UP        252
  30. # define        DOWN        253
  31. # define        LEFT        254
  32. # define        RIGHT        255
  33.  
  34. char *getenv(), *tgetstr(), *tgoto();
  35.  
  36. int outc();
  37.  
  38. char *KU, *KD, *KL, *KR;
  39.